翻訳と辞書
Words near each other
・ Pollimyrus
・ Pollin Prize for Pediatric Research
・ Pollina
・ Pollina (surname)
・ Pollination
・ Pollination bags
・ Pollination management
・ Pollination network
・ Pollination syndrome
・ Pollination trap
・ Pollinator
・ Pollinator decline
・ Pollinator exclusion experiment
・ Pollinator Partnership
・ Pollinators in New Zealand
Polling (computer science)
・ Polling Abbey
・ Polling agent
・ Polling im Innkreis
・ Polling in Tirol
・ Polling place
・ Polling system
・ Polling, Mühldorf
・ Polling, Weilheim-Schongau
・ Pollinger
・ Pollingeria
・ Pollington
・ Pollini
・ Pollinium
・ Pollinkhove


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Polling (computer science) : ウィキペディア英語版
Polling (computer science)

Polling, or polled operation, in computer science, refers to actively sampling the status of an external device by a client program as a synchronous activity. Polling is most often used in terms of input/output (), and is also referred to as polled or software-driven .
==Description==
Polling is the process where the computer or controlling device waits for an external device to check for its readiness or state, often with low-level hardware. For example, when a printer is connected via a parallel port, the computer waits until the printer has received the next character. These processes can be as minute as only reading one bit.
Polling is sometimes used synonymously with busy-wait polling. In this situation, when an operation is required, the computer does nothing other than check the status of the device until it is ready, at which point the device is accessed. In other words, the computer waits until the device is ready. Polling also refers to the situation where a device is repeatedly checked for readiness, and if it is not, the computer returns to a different task. Although not as wasteful of CPU cycles as busy waiting, this is generally not as efficient as the alternative to polling, interrupt-driven .
In a simple single-purpose system, even busy-wait is perfectly appropriate if no action is possible until the access, but more often than not this was traditionally a consequence of simple hardware or non-multitasking operating systems.
Polling is often intimately involved with very low-level hardware. For example, polling a parallel printer port to check whether it is ready for another character involves examining as little as one bit of a byte. That bit represents, at the time of reading, whether a single wire in the printer cable is at low or high voltage. The instruction that reads this byte directly transfers the voltage state of eight real world wires to the eight circuits (flip flops) that make up one byte of a CPU register.
Polling has the disadvantage that if there are too many devices to check, the time required to poll them can exceed the time available to service the I/O device.


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Polling (computer science)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.